copy function delphi

191

Delphi how copy works -

var
  Source, Target : string;

begin
  Source := '12345678';
  Target := copy(Source, 3, 4);
  ShowMessage('Target : '+Target);
end;

Comments

Submit
0 Comments